<!DOCTYPE html> <!-- HTML5 -->
<html>
<head> <!-- In general every HTML element uses two tags (starting tag and ending tag), e.g., <head> and </head>. -->
...
</head>
<body> <!-- Real web content is here. -->
<h1>Welcome to the world of wonders!</h1>
...
</body>
</html>
<!DOCTYPE html> <!-- HTML5 -->
<html>
<head>
<style>
.center-text { text-align: center; }
</style>
</head>
<body>
<h1>Welcome to the world of wonders!</h1>
<hr>
<h2 class='center-text'>TRU Board Game Playground</h1>
<h3 class='center-text'>- Computing Science -</h2>
</body>
</html>